home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / mig / RCS / MigOpenPdev.c,v < prev   
Text File  |  1990-09-24  |  6KB  |  294 lines

  1. head     2.3;
  2. branch   ;
  3. access   ;
  4. symbols  no-auto-remigrate:2.1 installed:2.0;
  5. locks    ; strict;
  6. comment  @ * @;
  7.  
  8.  
  9. 2.3
  10. date     90.09.24.14.46.50;  author douglis;  state Exp;
  11. branches ;
  12. next     2.2;
  13.  
  14. 2.2
  15. date     90.08.15.15.59.44;  author douglis;  state Exp;
  16. branches ;
  17. next     2.1;
  18.  
  19. 2.1
  20. date     90.06.22.14.58.28;  author douglis;  state Exp;
  21. branches ;
  22. next     2.0;
  23.  
  24. 2.0
  25. date     90.03.10.13.13.08;  author douglis;  state Stable;
  26. branches ;
  27. next     1.3;
  28.  
  29. 1.3
  30. date     90.03.10.13.11.50;  author douglis;  state Exp;
  31. branches ;
  32. next     1.2;
  33.  
  34. 1.2
  35. date     90.02.28.10.59.40;  author douglis;  state Exp;
  36. branches ;
  37. next     1.1;
  38.  
  39. 1.1
  40. date     90.02.16.15.17.22;  author douglis;  state Exp;
  41. branches ;
  42. next     ;
  43.  
  44.  
  45. desc
  46. @open the global or host-specific pdev.
  47. @
  48.  
  49.  
  50. 2.3
  51. log
  52. @added callback flag to MigHostCache to make it easier to flag all hosts as reclaimed after error
  53. @
  54. text
  55. @/* 
  56.  * MigOpenPdev.c --
  57.  *
  58.  *    This file contains the MigOpenPdev procedure, which
  59.  *    opens the pseudo-device that communicates with
  60.  *    either the global server or the local daemon.
  61.  *
  62.  * Copyright 1990 Regents of the University of California
  63.  * Permission to use, copy, modify, and distribute this
  64.  * software and its documentation for any purpose and without
  65.  * fee is hereby granted, provided that the above copyright
  66.  * notice appear in all copies.  The University of California
  67.  * makes no representations about the suitability of this
  68.  * software for any purpose.  It is provided "as is" without
  69.  * express or implied warranty.
  70.  */
  71.  
  72. #ifndef lint
  73. static char rcsid[] = "$Header: /sprite/src/lib/c/mig/RCS/MigOpenPdev.c,v 2.2 90/08/15 15:59:44 douglis Exp Locker: douglis $ SPRITE (Berkeley)";
  74. #endif not lint
  75.  
  76. #include <fs.h>
  77. #include <stdio.h>
  78. #include <sys/file.h>
  79. #include <mig.h>
  80. #include "migInt.h"
  81.  
  82. extern int errno;
  83. extern char *strerror();
  84.  
  85. /* 
  86.  * Define the global variables that refer to the pdevs used.  Initialize
  87.  * them to -1 to indicate they haven't been opened.
  88.  */
  89. int mig_GlobalPdev = -1;
  90. int mig_LocalPdev = -1;
  91.  
  92.  
  93. /*
  94.  *----------------------------------------------------------------------
  95.  *
  96.  * MigOpenPdev --
  97.  *
  98.  *    Open the specified pseudo-device.  If global
  99.  *    is non-zero, open the global pdev, else
  100.  *    open the pdev for this host.
  101.  *
  102.  * Results:
  103.  *    If successful, 0 is returned. If an error is encountered,
  104.  *    then -1 is returned and errno indicates the error.
  105.  *
  106.  * Side effects:
  107.  *    One of the global variables defined above is updated to
  108.  *    store the descriptor.  This variable is used in subsequent
  109.  *    accesses.  Also, if we give up after exceeding the maximum
  110.  *     number of retries, we set a flag so in the future we only
  111.  *    try once rather than going through the full sleep-open-sleep
  112.  *     ritual.
  113.  *
  114.  *----------------------------------------------------------------------
  115.  */
  116. int
  117. MigOpenPdev(global)
  118.     int global;            /* Whether to open the global pdev. */
  119. {
  120.     int desc;
  121.     char *name;
  122.     int retries;
  123.     int sleepTime;
  124.     static int gaveUp = 0;
  125.     
  126.  
  127.     if (global) {
  128.     /*
  129.      * Assume no hosts are assigned to us, and that any hosts previously
  130.      * assigned have been revoked.
  131.      */
  132.     MigHostCache(0, MIG_CACHE_REMOVE_ALL, TRUE);
  133.     }
  134.     name = Mig_GetPdevName(global);
  135.     if (name == (char *) NULL) {
  136.     fprintf(stderr,
  137.            "MigOpenPdev: Error getting name of pdev to open: %s.\n",
  138.            strerror(errno));
  139.     fflush(stderr);
  140.     return(-1);
  141.     }
  142.     desc = open(name, O_RDONLY, 0);
  143.     if (desc < 0) {
  144.     if (!gaveUp) {
  145.         gaveUp = 1;
  146.         fprintf(stderr,
  147.            "MigOpenPdev: Error opening pdev %s (still trying): %s.\n",
  148.            name, strerror(errno));
  149.         fflush(stderr);
  150.         for (retries = 0, sleepTime = 1;
  151.          retries < MIG_DAEMON_RETRY_COUNT;
  152.          retries++, sleepTime *= 2) {
  153.         sleep(sleepTime);
  154.         desc = open(name, O_RDONLY, 0);
  155.         if (desc >= 0) {
  156.             fprintf(stderr,
  157.                 "MigOpenPdev: Succeeded in opening pdev.\n");
  158.             fflush(stderr);
  159.             break;
  160.         }
  161.         }
  162.         if (retries == MIG_DAEMON_RETRY_COUNT) {
  163.         fprintf(stderr,
  164.                "MigOpenPdev: Unable to contact daemon.\n");
  165.         fflush(stderr);
  166.         return(-1);
  167.         }
  168.     } else {
  169.         return(-1);
  170.     }
  171.     }
  172.     if (global) {
  173.     mig_GlobalPdev = desc;
  174.     } else {
  175.     mig_LocalPdev = desc;
  176.     }
  177.     gaveUp = 0;
  178.     return(0);
  179. }
  180. @
  181.  
  182.  
  183. 2.2
  184. log
  185. @added fflushes.
  186. @
  187. text
  188. @d19 1
  189. a19 1
  190. static char rcsid[] = "$Header: /sprite/src/lib/c/mig/RCS/MigOpenPdev.c,v 2.1 90/06/22 14:58:28 douglis Exp Locker: douglis $ SPRITE (Berkeley)";
  191. d26 1
  192. d73 7
  193. @
  194.  
  195.  
  196. 2.1
  197. log
  198. @changes for alarms for timeouts with migd and for printing to stderr instead of syslog
  199. @
  200. text
  201. @d19 1
  202. a19 1
  203. static char rcsid[] = "$Header: /sprite/src/lib/c/mig/RCS/MigOpenPdev.c,v 2.0 90/03/10 13:13:08 douglis Stable Locker: douglis $ SPRITE (Berkeley)";
  204. d77 1
  205. d87 1
  206. d96 1
  207. d103 1
  208. @
  209.  
  210.  
  211. 2.0
  212. log
  213. @Changing version numbers.
  214. @
  215. text
  216. @d19 1
  217. a19 1
  218. static char rcsid[] = "$Header: /sprite/src/lib/c/mig/RCS/MigOpenPdev.c,v 1.3 90/03/10 13:11:50 douglis Exp Locker: douglis $ SPRITE (Berkeley)";
  219. a23 1
  220. #include <syslog.h>
  221. d74 1
  222. a74 1
  223.     syslog(LOG_ERR,
  224. d83 1
  225. a83 1
  226.         syslog(LOG_ERR,
  227. d92 2
  228. d98 1
  229. a98 1
  230.         syslog(LOG_ERR,
  231. @
  232.  
  233.  
  234. 1.3
  235. log
  236. @changed when it prints syslog message
  237. @
  238. text
  239. @d19 1
  240. a19 1
  241. static char rcsid[] = "$Header: /sprite/src/lib/c/mig/RCS/MigOpenPdev.c,v 1.2 90/02/28 10:59:40 douglis Exp Locker: douglis $ SPRITE (Berkeley)";
  242. @
  243.  
  244.  
  245. 1.2
  246. log
  247. @if we give up after exceeding the maximum
  248. number of retries, we set a flag so in the future we only
  249. try once rather than going through the full sleep-open-sleep
  250. ritual.
  251. @
  252. text
  253. @d19 1
  254. a19 1
  255. static char rcsid[] = "$Header: /sprite/src/lib/c/mig/RCS/MigOpenPdev.c,v 1.1 90/02/16 15:17:22 douglis Exp Locker: douglis $ SPRITE (Berkeley)";
  256. d84 3
  257. d98 1
  258. a98 2
  259.                "MigOpenPdev: Error opening pdev %s: %s.\n",
  260.                name, strerror(errno));
  261. d110 1
  262. @
  263.  
  264.  
  265. 1.1
  266. log
  267. @Initial revision
  268. @
  269. text
  270. @d19 1
  271. a19 1
  272. static char rcsid[] = "$Header: /sprite/src/lib/c/mig/RCS/MigOpenPdev.c,v 1.1 90/02/16 14:29:40 douglis Exp $ SPRITE (Berkeley)";
  273. d55 4
  274. a58 1
  275.  *    accesses.
  276. d70 1
  277. d80 21
  278. a100 6
  279.     for (retries = 0, sleepTime = 1;
  280.      retries < MIG_DAEMON_RETRY_COUNT;
  281.      retries++, sleepTime *= 2) {
  282.     desc = open(name, O_RDONLY, 0);
  283.     if (desc >= 0) {
  284.         break;
  285. a101 7
  286.     sleep(sleepTime);
  287.     }
  288.     if (retries == MIG_DAEMON_RETRY_COUNT) {
  289.     syslog(LOG_ERR,
  290.            "MigOpenPdev: Error opening pdev %s: %s.\n",
  291.            name, strerror(errno));
  292.     return(-1);
  293. @
  294.